Contents
Main File
clear all;
close all;
clc;
Task(a)
eps = 0.35;
beta = 5.5;
theta_task_a = [eps beta];
sim_trials = 250;
task_a = simulations(theta_task_a, sim_trials);
figure(1)
plot(task_a.values_A);
title('Evolution of Values for stimulus A');
xlabel('Trial Number');
ylabel('Value associted with A or V(A)');
figure(2)
plot(task_a.values_B);
title('Evolution of Values for stimulus B');
xlabel('Trial Number');
ylabel('Value associted with B or V(B)');
figure(3)
val_diff = (task_a.values_A - task_a.values_B);
plot(val_diff);
title('Evolution of Difference of Values for A nd B');
xlabel('Trial Number');
ylabel('Difference Value or V(A) - V(B)');
task1_runs = 1000;
val_A = zeros(task1_runs, sim_trials);
val_B = zeros(task1_runs, sim_trials);
for i = 1:task1_runs
generate_data_task_a = simulations(theta_task_a, sim_trials);
val_A(i,:) = generate_data_task_a.values_A;
val_B(i,:) = generate_data_task_a.values_B;
reward_counts(i) = generate_data_task_a.reward_count;
end
mean_reward_task_a = mean(reward_counts);
disp('The average reward is:');
disp(mean_reward_task_a);
val_A_rand = zeros(task1_runs, sim_trials);
val_B_rand = zeros(task1_runs, sim_trials);
for i = 1:task1_runs
generate_data_rand = simulations_rand(theta_task_a, sim_trials);
val_A_rand(i,:) = generate_data_rand.values_A;
val_B_rand(i,:) = generate_data_rand.values_B;
reward_counts_rand(i) = generate_data_rand.reward_count;
end
mean_reward_task_a_rand = mean(reward_counts_rand);
disp('The average reward for random choice is:');
disp(mean_reward_task_a_rand);
The average reward is:
146.4980
The average reward for random choice is:
134.0200
Task (c) Likelihood Function
load('data.mat');
data_part_1.choices = data.choices(1,:);
data_part_1.rewards = data.rewards(1,:);
nll_participant_1 = nll(data_part_1, [0.4 5]);
disp('The verification NLL value for Participant 1 is:');
disp(nll_participant_1);
data_part_2.choices = data.choices(2,:);
data_part_2.rewards = data.rewards(2,:);
nll_participant_2= nll(data_part_2, [0.4 5]);
disp('The NLL for Participant 2 is:');
disp(nll_participant_2);
The verification NLL value for Participant 1 is:
121.8900
The NLL for Participant 2 is:
127.2260
Task(d) Model Fitting
theta_zero = [0 0];
for ind = 1: size(data.choices, 1)
temp_data.choices = data.choices(ind,:);
temp_data.rewards = data.rewards(ind,:);
nll_opt = @(theta) nll(temp_data, theta);
[optimizer, value] = fminunc(nll_opt, theta_zero);
individuals(ind,:) = [optimizer, value];
end
Learning_Rate = individuals(:,1);
Inverse_Temp = individuals(:,2);
Participants = 1:1:size(data.choices, 1);
Participants = Participants';
Table1 = table(Participants, Learning_Rate, Inverse_Temp);
writetable(Table1,'Param_opt_zero.txt');
eps_multiple = [-1.5 -1 -0.5 0 0.2 0.5 1 1.5 2];
beta_multiple = [0 3 5 8 12 15 -5 -10 20];
for ind_eps = 1:size(eps_multiple, 2)
for ind_beta = 1:size(beta_multiple, 2)
for ind = 1: size(data.choices,1)
temp_data.choices = data.choices(ind,:);
temp_data.rewards = data.rewards(ind,:);
nll_opt = @(theta) nll(temp_data, [eps_multiple(ind_eps) beta_multiple(ind_beta)]);
[optimizer, value] = fminunc(nll_opt, theta_zero);
individuals_multi(ind,:) = [optimizer, value];
end
end
end
figure(5)
plot(1:23, logsig(individuals(1:23,1)),'r');
hold on
plot(24:48, logsig(individuals(24:48,1)),'g');
hold on
plot(1:23, individuals(1:23,2),'r');
plot(24:48, individuals(24:48,2),'g');
hold off
title('Visualizing the fitted Parameters');
xlabel('Participants Index');
ylabel('Learning Rates and Inverse Temperatures');
[R_pat P_pat] = corrcoef(individuals(1:23,1), individuals(1:23,2));
disp('correlation for patients is:'); disp(R_pat);
[R_heal P_heal] = corrcoef(individuals(24:48,1), individuals(24:48,2));
disp('correlation for healthy is:'); disp(R_heal);
[R_all P_all] = corrcoef(individuals(:,1), individuals(:,2));
disp('correlation across groups is:'); disp(R_all);
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
Initial point is a local minimum.
Optimization completed because the size of the gradient at the initial point
is less than the default value of the optimality tolerance.
correlation for patients is:
1.0000 -0.5916
-0.5916 1.0000
correlation for healthy is:
1.0000 0.1815
0.1815 1.0000
correlation across groups is:
1.0000 -0.3513
-0.3513 1.0000
Task(f) Group Comparision
[h1,p1,ci1,stats1] = ttest2(individuals(1:23,1),individuals(24:48,1));
disp('The null hypothesis, p value and t-stats for learning rate is:'); disp(h1); disp(p1); disp(stats1);
[h2,p2,ci2,stats2] = ttest2(individuals(1:23,2),individuals(24:48,2));
disp('The null hypothesis, p value and t-stats for inverse temp is:'); disp(h2); disp(p2); disp(stats2);
The null hypothesis, p value and t-stats for learning rate is:
0
0.0524
tstat: 1.9916
df: 46
sd: 0.5978
The null hypothesis, p value and t-stats for inverse temp is:
1
7.4375e-07
tstat: -5.7261
df: 46
sd: 0.9579
Task(g) Parameter Recovery
mean_eps = mean(individuals(:,1));
save mean_eps.mat mean_eps
var_eps = var(individuals(:,1));
save var_eps.mat var_eps
disp('The mean and variance for learning rate is:');disp([mean_eps var_eps]);
mean_beta = mean(individuals(:,2));
save mean_beta.mat mean_beta
var_beta = var(individuals(:,2));
save var_beta.mat var_beta
disp('The mean and variance for inverse temp is:');disp([mean_beta var_beta]);
The mean and variance for learning rate is:
-0.6041 0.3799
The mean and variance for inverse temp is:
4.5700 1.5382
Task(h) Alternative Models
model_2 = simulations_2(theta_task_a, sim_trials);
figure(9)
plot(model_2.values_A);
title('Evolution of Values for stimulus A and B(Model 2');
xlabel('Trial Number');
ylabel('Value associted with A and B');
hold on
plot(model_2.values_B);
hold off
figure(10)
val_diff = (model_2.values_A - model_2.values_B);
plot(val_diff);
title('Evolution of Difference of Values for A nd B (Model 2)');
xlabel('Trial Number');
ylabel('Difference Value or V(A) - V(B)');
nll_participant_2_model_2 = nll_2(data_part_2, [0.4 5]);
disp('The NLL for Participant 2 in model 2 is:');
disp(nll_participant_2_model_2);
for ind = 1: size(data.choices, 1)
temp_data.choices = data.choices(ind,:);
temp_data.rewards = data.rewards(ind,:);
nll_opt = @(theta) nll_2(temp_data, theta);
[optimizer, value] = fminunc(nll_opt, theta_zero);
individuals_model2(ind,:) = [optimizer, value];
end
figure(11)
plot(1:23, logsig(individuals_model2(1:23,1)),'r');
hold on
plot(24:48, logsig(individuals_model2(24:48,1)),'g');
hold on
plot(1:23, individuals_model2(1:23,2),'r');
plot(24:48, individuals_model2(24:48,2),'g');
hold off
title('Visualizing the fitted Parameters(Model 2)');
xlabel('Participants Index');
ylabel('Learning Rates and Inverse Temperatures');
model_3 = simulations_3(theta_task_a, sim_trials);
figure(12)
plot(model_3.values_A);
title('Evolution of Values for stimulus A and B(Model 3');
xlabel('Trial Number');
ylabel('Value associted with A and B');
hold on
plot(model_3.values_B);
hold off
figure(13)
val_diff = (model_3.values_A - model_3.values_B);
plot(val_diff);
title('Evolution of Difference of Values for A nd B (Model 3)');
xlabel('Trial Number');
ylabel('Difference Value or V(A) - V(B)');
nll_participant_2_model_3 = nll_3(data_part_2, [0.4 5]);
disp('The NLL for Participant 2 in model 2 is:');
disp(nll_participant_2_model_3);
for ind = 1: size(data.choices, 1)
temp_data.choices = data.choices(ind,:);
temp_data.rewards = data.rewards(ind,:);
nll_opt = @(theta) nll_3(temp_data, theta);
[optimizer, value] = fminunc(nll_opt, theta_zero);
individuals_model3(ind,:) = [optimizer, value];
end
figure(14)
plot(1:23, logsig(individuals_model3(1:23,1)),'r');
hold on
plot(24:48, logsig(individuals_model3(24:48,1)),'g');
hold on
plot(1:23, individuals_model3(1:23,2),'r');
plot(24:48, individuals_model3(24:48,2),'g');
hold off
title('Visualizing the fitted Parameters(Model 3)');
xlabel('Participants Index');
ylabel('Learning Rates and Inverse Temperatures');
The NLL for Participant 2 in model 2 is:
127.2260
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
The NLL for Participant 2 in model 2 is:
126.3673
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Task(i) Model Comparision
p = 2;
AIC_model(1) = sum((2*individuals(:,3)) + (2*p));
AIC_model(2) = sum((2*individuals_model2(:,3)) + (2*p));
AIC_model(3) = sum((2*individuals_model3(:,3)) + (2*p));
n = 250;
BIC_model(1) = sum((2*individuals(:,3)) + (log(n)*p));
BIC_model(2) = sum((2*individuals_model2(:,3)) + (log(n)*p));
BIC_model(3) = sum((2*individuals_model3(:,3)) + (log(n)*p));
disp('The AIC values are(model as index):'); disp(AIC_model);
disp('The BIC values are(model as index):'); disp(BIC_model);
figure(15)
plot(AIC_model);
hold on
plot(BIC_model);
title('AIC and BIC values');
xlabel('Model as Index');
ylabel('AIC & BIC values');
The AIC values are(model as index):
1.0e+04 *
1.0744 1.0744 1.0883
The BIC values are(model as index):
1.0e+04 *
1.1082 1.1082 1.1221
Task(j) Model recovery and Confusion Matrix
for i= 1:100
for j = 1:3
for ind = 1:48
if j == 1
datamodel = simulations(theta_task_a, sim_trials);
end
if j == 2
datamodel = simulations_2(theta_task_a, sim_trials);
end
if j == 3
datamodel = simulations_3(theta_task_a, sim_trials);
end
temp_data.choices = datamodel.choices;
temp_data.rewards = datamodel.rewards;
nll_opt1 = @(theta) nll(temp_data, theta);
nll_opt2 = @(theta) nll_2(temp_data, theta);
nll_opt3 = @(theta) nll_3(temp_data, theta);
[optimizer1, value1] = fminunc(nll_opt1, theta_zero);
individuals_model1_conf(ind,:) = [optimizer1, value1];
[optimizer2, value2] = fminunc(nll_opt2, theta_zero);
individuals_model2_conf(ind,:) = [optimizer2, value2];
[optimizer3, value3] = fminunc(nll_opt3, theta_zero);
individuals_model3_conf(ind,:) = [optimizer3, value3];
end
AIC_model(1) = sum((2*individuals_model1_conf(:,3)) + (2*p));
AIC_model(2) = sum((2*individuals_model2_conf(:,3)) + (2*p));
AIC_model(3) = sum((2*individuals_model3_conf(:,3)) + (2*p));
BIC_model(1) = sum((2*individuals_model1_conf(:,3)) + (log(n)*p));
BIC_model(2) = sum((2*individuals_model2_conf(:,3)) + (log(n)*p));
BIC_model(3) = sum((2*individuals_model3_conf(:,3)) + (log(n)*p));
compare(j,:,i) = [AIC_model BIC_model];
end
end
targets = eye(3);
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.
Local minimum found.
Optimization completed because the size of the gradient is less than
the default value of the optimality tolerance.